home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / effects / effectClasses / PropertyChanges.as < prev    next >
Encoding:
Text File  |  2008-10-29  |  512 b   |  27 lines

  1. package mx.effects.effectClasses
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public class PropertyChanges
  8.    {
  9.       mx_internal static const VERSION:String = "3.0.0.0";
  10.       
  11.       public var target:Object;
  12.       
  13.       public var start:Object;
  14.       
  15.       public var end:Object;
  16.       
  17.       public function PropertyChanges(param1:Object)
  18.       {
  19.          end = {};
  20.          start = {};
  21.          super();
  22.          this.target = param1;
  23.       }
  24.    }
  25. }
  26.  
  27.